Matrix Constructor(Boolean,Vector[])
In This Topic
Initializes a new instance of Matrix class.
Syntax
'Declaration
Public Function New( _
ByVal As Boolean, _
ByVal ParamArray () As Vector _
)
public Matrix(
bool ,
params Vector[]
)
Parameters
- vertical
- A bool indicates whether the direction of vectors is vertical.
- vectors
- A Vector array indicates the vectors.
See Also